Pointers (Cont.)
Pascal C/C++
wtype
w stuptr = ^node;
wvar
w  first: stuptr;
wtypedef
w struct student *stuptr;
wstuptr first;
w 
OR
typedef
student *stuptr;
stuptr first;
NOTE: In C, which form is used depends on whether the type student was declared using typedef or not.